home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / c_tutor.lha / C_Tutor / INTIN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-02-05  |  279 b   |  15 lines

  1. #include "stdio.h"
  2.  
  3. main()
  4. {
  5. int valin;
  6.  
  7.    printf("Input a number from 0 to 32767, stop with 100.\n");
  8.  
  9.    do {
  10.       scanf("%d",&valin);   /* read a single integer value in */
  11.       printf("The value is %d\n",valin);
  12.    } while (valin != 100);
  13.  
  14.    printf("End of program\n");
  15. }